2023-04-11 08:33:53 +04:00

7 lines
178 B
C#

namespace SushiBarBusinessLogic.OfficePackage.HelpersModels;
public class WordCell
{
public int Width { get; set; }
public string Text { get; set; } = string.Empty;
}