Files
Backend-Api/Company.Domain/FileTitle/FileTitle.cs
2024-07-05 21:36:15 +03:30

23 lines
394 B
C#

using _0_Framework.Domain;
namespace Company.Domain.FileTitle;
public class FileTitle : EntityBase
{
public FileTitle(string title, string type)
{
Title = title;
Type = type;
}
public string Title { get; set; }
public string Type { get; set; }
public void Edit(string title, string type)
{
Title = title;
Type = type;
}
}