Files
xModels/Base/XBaseStringIDEntity.cs
T
2024-01-25 04:37:38 +03:30

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> { }
}