Files
WatchIt/WatchIt.Common/WatchIt.Common.Model/Photos/Photo.cs

13 lines
262 B
C#
Raw Normal View History

2024-09-25 22:11:28 +02:00
using System.Text.Json.Serialization;
namespace WatchIt.Common.Model.Photos;
public abstract class Photo : Picture
{
#region PROPERTIES
[JsonPropertyName("background")]
public PhotoBackgroundData? Background { get; set; }
#endregion
}