8 lines
190 B
C#
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> { }
|
|
} |