14 lines
275 B
C#
14 lines
275 B
C#
namespace fxl.codes.kisekae.Entities
|
|
{
|
|
public interface IKisekaeFile
|
|
{
|
|
int Id { get; set; }
|
|
int KisekaeId { get; set; }
|
|
string Filename { get; set; }
|
|
}
|
|
|
|
public interface IKisekaeParseable
|
|
{
|
|
byte[] Data { get; set; }
|
|
}
|
|
} |