FileSizePopulated
using kCura.WinEDDS.Api;
using System.Runtime.CompilerServices;
namespace kCura.WinEDDS.ImportExtension
{
public class FileSizePopulated : IHasFileSize
{
[CompilerGenerated]
private long _FileSize;
public long FileSize { get; set; }
public long GetFileSize()
{
return FileSize;
}
long IHasFileSize.GetFileSize()
{
return this.GetFileSize();
}
}
}