mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-11-22 14:33:10 -05:00
8 lines
120 B
C#
8 lines
120 B
C#
namespace Kyoo.Models
|
|
{
|
|
public interface IResource
|
|
{
|
|
public int ID { get; set; }
|
|
public string Slug { get; }
|
|
}
|
|
} |