9 lines
269 B
C#
9 lines
269 B
C#
using System.Collections.Generic;
|
|
using AccountManagement.Application.Contracts.Media;
|
|
|
|
namespace AccountManagement.Application.Contracts.Task;
|
|
public class EditTask:CreateTask
|
|
{
|
|
public long Id { get; set; }
|
|
public List<MediaViewModel> medias { get; set; }
|
|
} |