7 lines
178 B
C#
7 lines
178 B
C#
|
namespace SushiBarBusinessLogic.OfficePackage.HelpersModels;
|
|||
|
|
|||
|
public class WordCell
|
|||
|
{
|
|||
|
public int Width { get; set; }
|
|||
|
public string Text { get; set; } = string.Empty;
|
|||
|
}
|