8 lines
212 B
C#
8 lines
212 B
C#
namespace Events.FilesAPI.Infrastructure.Files;
|
|
|
|
public sealed class GeneratedFileReference
|
|
{
|
|
public string PhysicalPath { get; init; } = string.Empty;
|
|
public string FileName { get; init; } = string.Empty;
|
|
}
|