9 lines
240 B
C#
9 lines
240 B
C#
namespace AccountManagement.Application.Contracts.Media;
|
|
|
|
public class MediaViewModel
|
|
{
|
|
public long Id { get; set; }
|
|
public string Path { get; set; }
|
|
public string Type { get; set; }
|
|
public string Category { get; set; }
|
|
} |