mirror of
https://github.com/fergalmoran/deepsouthsounds.git
synced 2025-12-22 01:42:34 +00:00
8 lines
148 B
C#
8 lines
148 B
C#
namespace DSS.Api.Data.Models.Interfaces
|
|
{
|
|
public interface ISluggedEntity : IUniqueFieldEntity
|
|
{
|
|
string Slug { get; set; }
|
|
}
|
|
}
|