namespace SabreTools.Data.Models.STFS { /// /// Secure Transacted File System (STFS) License Entry format /// /// public class LicenseEntry { /// /// License ID /// public long LicenseID { get; set; } /// /// License Bits /// public int LicenseBits { get; set; } /// /// License Flags /// public int LicenseFlags { get; set; } } }