17 lines
551 B
C#
17 lines
551 B
C#
using PosterMaker.Models.Enums;
|
|
|
|
namespace PosterMaker.Models;
|
|
|
|
public struct ImageProperties
|
|
{
|
|
public string? Title { get; init; }
|
|
public string? Title2 { get; init; }
|
|
public string? Subtitle { get; init; }
|
|
public string? TopSubtitle { get; init; }
|
|
public string? Index { get; init; }
|
|
public MovieLogoEnum? Logo { get; init; }
|
|
public LogoOptionEnum? LogoOption { get; init; }
|
|
public NetworkLogoEnum? NetworkLogo { get; init; }
|
|
public string? Season { get; init; }
|
|
public bool? LimitedSeries { get; init; }
|
|
} |