7 lines
95 B
C#
7 lines
95 B
C#
namespace Domain.Common;
|
|
|
|
public interface IHasSequentialId
|
|
{
|
|
string Id { get; set; }
|
|
}
|