11 lines
299 B
C#
11 lines
299 B
C#
using AyCode.Interfaces.Entities;
|
|
using AyCode.Interfaces.TimeStampInfo;
|
|
|
|
namespace FruitBank.Common.Interfaces;
|
|
|
|
public interface IFiles: IEntityInt, ITimeStampInfo
|
|
{
|
|
public string FileName { get; set; }
|
|
public string FileExtension { get; set; }
|
|
public string RawText { get; set; }
|
|
} |