11 lines
304 B
C#
11 lines
304 B
C#
namespace SessionZero.SzfLib.File;
|
|
|
|
public interface ISzfFile
|
|
{
|
|
public string? SzfType { get; set; }
|
|
public string? Schema { get; set; }
|
|
public string? Name { get; set; }
|
|
public string? Guid { get; set; }
|
|
public string? Version { get; set; }
|
|
public string? Content { get; set; }
|
|
} |