Files
Backend-Api/AccountManagement.Application.Contracts/Media/MediaViewModel.cs
2024-07-10 20:25:54 +03:30

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; }
}