blob: 6dc3f6b2a72e91e747cee4bc3fc0feea4d11363d [file] [log] [blame]
using System.Runtime.Serialization;
namespace BaSys40.Models.Core.AssetAdministrationShell.Generics.DataElementSubtypes
{
public interface IFile : IDataElement<string>
{
[DataMember(EmitDefaultValue = false, IsRequired = false, Name = "mimeType")]
string MimeType { get; }
}
}