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

8 lines
190 B
C#

using System;
namespace xModels.Base {
/// <summary>
/// a BaseEntity Class which has Id of Guid type
/// </summary>
public class XBaseGuidIDEntity : XBaseEntity<Guid> { }
}