-
Notifications
You must be signed in to change notification settings - Fork 3
/
IFatturaElettronicaType.cs
41 lines (35 loc) · 1.15 KB
/
IFatturaElettronicaType.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
//-----------------------------------------------------------------------
// <copyright file="IFatturaElettronicaType.cs" company="Studio A&T s.r.l.">
// Author: nicogis
// Copyright (c) Studio A&T s.r.l. All rights reserved.
// </copyright>
//-----------------------------------------------------------------------
namespace FatturazioneElettronica
{
/// <summary>
/// IFatturazioneElettronicaType interface.
/// </summary>
public interface IFatturaElettronicaType
{
///// <summary>
///// namespace utilizzato nell'xml
///// </summary>
public string Namespace { get; }
///// <summary>
///// ds namespace utilizzato nell'xml
///// </summary>
public string DsNamespace { get; }
///// <summary>
///// xsd per validare le fatture
///// </summary>
public string XsdFileFatturaVersioneXsd { get; }
///// <summary>
///// file style
///// </summary>
public string FileStyle { get; }
/// <summary>
/// versione schema
/// </summary>
public string VersioneFatturaSchema { get; }
}
}