2024-06-11 12:18:10 +04:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace DataModels.Models
|
|
|
|
|
{
|
2024-06-17 14:04:22 +04:00
|
|
|
|
public interface IMediaFile : IId
|
2024-06-11 12:18:10 +04:00
|
|
|
|
{
|
|
|
|
|
string Name { get; }
|
|
|
|
|
string Location { get; }
|
2024-06-17 14:04:22 +04:00
|
|
|
|
Guid ProductId { get; }
|
2024-06-11 12:18:10 +04:00
|
|
|
|
}
|
|
|
|
|
}
|