10 lines
339 B
C#
10 lines
339 B
C#
|
|
namespace WatchIt.Website.Services.Utility.Configuration.Model;
|
||
|
|
|
||
|
|
public class Photos
|
||
|
|
{
|
||
|
|
public string Base { get; set; }
|
||
|
|
public string GetPhotoRandomBackground { get; set; }
|
||
|
|
public string DeletePhoto { get; set; }
|
||
|
|
public string PutPhotoBackgroundData { get; set; }
|
||
|
|
public string DeletePhotoBackgroundData { get; set; }
|
||
|
|
}
|