23 lines
394 B
C#
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;
|
|
}
|
|
} |