16 lines
324 B
C#
16 lines
324 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace Contracts.BindingModels
|
|||
|
{
|
|||
|
public class MediaFileBindingModel
|
|||
|
{
|
|||
|
public Guid Id { get; set; }
|
|||
|
public Guid ProductId { get; set; }
|
|||
|
public string Location { get; set; } = string.Empty;
|
|||
|
}
|
|||
|
}
|