diff options
| author | dkanada <dkanada@users.noreply.github.com> | 2020-01-08 10:52:48 +0900 |
|---|---|---|
| committer | dkanada <dkanada@users.noreply.github.com> | 2020-01-08 10:52:48 +0900 |
| commit | 73fac50e57982ac46aea2b487e9906826c3dc3b2 (patch) | |
| tree | fba035667905c4cc55798906e584ab7d0f5c5b7f /MediaBrowser.Model | |
| parent | 8a0ef4103632b2888249af2f385e1e7bfc06fbfe (diff) | |
rename two properties based on code suggestions
Diffstat (limited to 'MediaBrowser.Model')
| -rw-r--r-- | MediaBrowser.Model/Entities/MediaAttachment.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/MediaBrowser.Model/Entities/MediaAttachment.cs b/MediaBrowser.Model/Entities/MediaAttachment.cs index 26279b72b..8f8c3efd2 100644 --- a/MediaBrowser.Model/Entities/MediaAttachment.cs +++ b/MediaBrowser.Model/Entities/MediaAttachment.cs @@ -33,13 +33,13 @@ namespace MediaBrowser.Model.Entities /// Gets or sets the filename. /// </summary> /// <value>The filename.</value> - public string Filename { get; set; } + public string FileName { get; set; } /// <summary> /// Gets or sets the MIME type. /// </summary> /// <value>The MIME type.</value> - public string MIMEType { get; set; } + public string MimeType { get; set; } /// <summary> /// Gets or sets the delivery URL. |
