-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathGlobals.cs
39 lines (31 loc) · 1.15 KB
/
Globals.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
//-----------------------------------------------------------------------
// <copyright file="FatturaElettronicaReferences.cs" company="Studio A&T s.r.l.">
// Copyright (c) Studio A&T s.r.l. All rights reserved.
// </copyright>
// <author>Nicogis</author>
//-----------------------------------------------------------------------
namespace FatturazioneElettronica
{
using System;
public static class Globals
{
/// <summary>
/// folder contenitori stili
/// </summary>
public const string FolderStili = "Stili";
/// <summary>
/// folder contenitore schemi
/// </summary>
public const string FolderSchemi = "Schemi";
/// <summary>
/// prefisso file stile PA
/// </summary>
public const string PrefixStilePA = "FatturaPA_v";
/// <summary>
/// prefisso file stile fattura ordinaria
/// </summary>
public const string PrefixStileO = "FatturaOrdinaria_v";
public const string PrefixSchemaXsdV1_0 = "fatturapa_v";
public const string PrefixSchemaXsd = "Schema_del_file_xml_FatturaPA_versione_";
}
}