8 lines
196 B
C#
8 lines
196 B
C#
using System;
|
|
|
|
namespace xModels.Base {
|
|
/// <summary>
|
|
/// a BaseEntity Class which has Id of string type
|
|
/// </summary>
|
|
public class XBaseStringIDEntity : XBaseEntity<string> { }
|
|
} |