mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-06-16 20:14:16 -04: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; }
|
|
}
|
|
} |