PIAPS_CW/DataModels/Models/IMediaFile.cs

16 lines
269 B
C#
Raw Normal View History

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
{
public interface IMediaFile : IId
2024-06-11 12:18:10 +04:00
{
string Name { get; }
string Location { get; }
Guid ProductId { get; }
2024-06-11 12:18:10 +04:00
}
}