mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-06-03 13:44:33 -04:00
8 lines
121 B
C#
8 lines
121 B
C#
namespace Kyoo.Models
|
|
{
|
|
public interface IRessource
|
|
{
|
|
public int ID { get; set; }
|
|
public string Slug { get; }
|
|
}
|
|
} |