MediaTag.cs 447 B

123456789101112131415161718
  1. namespace FNZCM.Shared.MediaModels
  2. {
  3. public class MediaTag
  4. {
  5. public MediaTag(string title, int duration, long length, string artist)
  6. {
  7. Title = title;
  8. Duration = duration;
  9. Length = length;
  10. Artist = artist;
  11. }
  12. public string Title { get; }
  13. public int Duration { get; }
  14. public long Length { get; }
  15. public string Artist { get; }
  16. }
  17. }