27 lines
644 B
C#
27 lines
644 B
C#
using System.Collections.Generic;
|
|
using _0_Framework.Domain;
|
|
using AccountManagement.Domain.TaskMediaAgg;
|
|
|
|
namespace AccountManagement.Domain.MediaAgg;
|
|
|
|
public class Media:EntityBase
|
|
{
|
|
public Media( string path, string type, string category)
|
|
{
|
|
|
|
Path = path;
|
|
Type = type;
|
|
Category = category;
|
|
}
|
|
|
|
|
|
//مسیر ذخیره فایل
|
|
public string Path { get; private set; }
|
|
|
|
//نوع ذخیره فایل
|
|
public string Type { get; private set; }
|
|
|
|
//دسته بندی ذخیره فایل
|
|
public string Category { get; set; }
|
|
public List<TaskMedia> TaskMedias { get; set; }
|
|
} |