11 lines
382 B
C#
11 lines
382 B
C#
namespace Prefab.Web.Client.Models;
|
|
|
|
public class Slide
|
|
{
|
|
public int Number { get; set; }
|
|
public string Text { get; set; } = string.Empty;
|
|
public string TextWidth { get; set; } = string.Empty;
|
|
public string TextPosition { get; set; } = string.Empty;
|
|
public string AltText { get; set; } = string.Empty;
|
|
public string GoToUrl { get; set; } = string.Empty;
|
|
} |