diff options
| author | Joshua M. Boniface <joshua@boniface.me> | 2021-05-04 21:14:23 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-05-04 21:14:23 -0400 |
| commit | fe0fce26e40af6d6cefb43bb58a6e68d7f65c5da (patch) | |
| tree | 10b1147ca661c98c224e67f6fe33ebbcbc36c432 /MediaBrowser.Model/Dlna/TranscodingProfile.cs | |
| parent | 9d3f61452707f2ffd894c2a77d901a7b82c0c6f5 (diff) | |
| parent | 1a178e84905c776766c49551f52dc163b93c81b0 (diff) | |
Merge pull request #5969 from crobibero/required-revert
Remove Required attributes
Diffstat (limited to 'MediaBrowser.Model/Dlna/TranscodingProfile.cs')
| -rw-r--r-- | MediaBrowser.Model/Dlna/TranscodingProfile.cs | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/MediaBrowser.Model/Dlna/TranscodingProfile.cs b/MediaBrowser.Model/Dlna/TranscodingProfile.cs index ea446b733..214578a85 100644 --- a/MediaBrowser.Model/Dlna/TranscodingProfile.cs +++ b/MediaBrowser.Model/Dlna/TranscodingProfile.cs @@ -8,23 +8,18 @@ namespace MediaBrowser.Model.Dlna { public class TranscodingProfile { - [Required] [XmlAttribute("container")] public string Container { get; set; } = string.Empty; - [Required] [XmlAttribute("type")] public DlnaProfileType Type { get; set; } - [Required] [XmlAttribute("videoCodec")] public string VideoCodec { get; set; } = string.Empty; - [Required] [XmlAttribute("audioCodec")] public string AudioCodec { get; set; } = string.Empty; - [Required] [XmlAttribute("protocol")] public string Protocol { get; set; } = string.Empty; |
