123456789101112131415161718 |
- namespace FNZCM.Shared.MediaModels
- {
- public class MediaTag
- {
- public MediaTag(string title, int duration, long length, string artist)
- {
- Title = title;
- Duration = duration;
- Length = length;
- Artist = artist;
- }
- public string Title { get; }
- public int Duration { get; }
- public long Length { get; }
- public string Artist { get; }
- }
- }
|