ln.provider.data.phone/Rate.cs

26 lines
719 B
C#

// /**
// * File: Rate.cs
// * Author: haraldwolff
// *
// * This file and it's content is copyrighted by the Author and / or copyright holder.
// * Any use wihtout proper permission is illegal and may lead to legal actions.
// *
// *
// **/
using System;
namespace ln.provider.data.phone
{
public class Rate
{
public String Prefix;
public int ThousandsPerMinute; // Gebühr pro Minute in [ 1/1000 (€) ] (also z.B. 1000 = 1€, 10 = 0,01€)
public int FirstBillingInterval; // Minimales Abrechnungsintervall in [s]
public int RegularBillingInterval; // Reguläres Abrechnungsintervall in [s]
public Rate()
{
}
}
}