AyCode.Core/AyCode.Interfaces/Profiles/Dtos/IAcProfileDtoBase.cs

10 lines
249 B
C#

using AyCode.Interfaces.Entities;
using AyCode.Interfaces.MediaInfo;
namespace AyCode.Interfaces.Profiles.Dtos;
public interface IAcProfileDtoBase : IEntityGuid, IMediaInfo
{
string Name { get; set; }
string? Description { get; set; }
}