PIAPS_CW/DataModels/Models/IMediaFile.cs

15 lines
243 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
{
2024-06-25 20:26:34 +04:00
byte[] Image { get; }
Guid ProductId { get; }
2024-06-11 12:18:10 +04:00
}
}