11 lines
406 B
C#
11 lines
406 B
C#
namespace SessionZero.SzfLib.File;
|
|
|
|
public class SzfFile : ISzfFile
|
|
{
|
|
public string? SzfType { get; set; } = string.Empty;
|
|
public string? Schema { get; set; } = string.Empty;
|
|
public string? Name { get; set; } = string.Empty;
|
|
public string? Guid { get; set; } = string.Empty;
|
|
public string? Version { get; set; } = string.Empty;
|
|
public string? Content { get; set; } = string.Empty;
|
|
} |